home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / WakeRace.dxr / Internal_17_In Between End.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  306 b   |  20 lines

  1. global gFinalRankings, gCurrTrack, gPlayer
  2.  
  3. on exitFrame me
  4.   go(the frame)
  5. end
  6.  
  7. on keyDown
  8.   if the key = SPACE then
  9.     p_Init()
  10.     gPlayer.reset()
  11.     gFinalRankings = []
  12.     gCurrTrack = gCurrTrack + 1
  13.     if gCurrTrack > 3 then
  14.       go("Game Over")
  15.     else
  16.       go("Game")
  17.     end if
  18.   end if
  19. end
  20.